home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / Transport Independent Speech / SpokenSerialApp / SpeechCallbacks.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-16  |  462 b   |  16 lines  |  [TEXT/CWIE]

  1. #ifndef __SPEACHCALLBACKS__
  2. #define __SPEACHCALLBACKS__
  3.  
  4. #include <Speech.h>
  5.  
  6. OSErr        SetSpeechDoneCallback    (const SpeechChannel theSpeechChan);
  7. OSErr        SetWordCallback            (const SpeechChannel theSpeechChan);
  8. pascal void SpeechDoneCallback        (const SpeechChannel theSpeechChan,
  9.                                     const long refCon);
  10. pascal void WordCallback            (const SpeechChannel theSpeechChan,
  11.                                     const long refCon,
  12.                                     const long wordPos,
  13.                                     const short wordLen);
  14.  
  15. #endif
  16.